home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / software / temacd / tiny / tpf-6[1].5.126.exe / Tiny Firewall 2005.msi / webui.dll / WS / WSN-RULES2.XSL < prev    next >
Encoding:
Extensible Markup Language  |  2005-08-17  |  4.4 KB  |  158 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4. /*//////////////////////////////////////////////////////////////////////
  5. Filename:          wsn-rules2.xsl
  6. Company Name:      Computer Associates International, Inc.
  7. Legal Copyright: Copyright (c) Computer Associates International, Inc.
  8. Author:          Marek Matus
  9. Product:          Tiny Firewall
  10. Description:      Windows Security: lists all rules by object type
  11. ///////////////////////////////////////////////////////////////////////*/
  12.  -->
  13.  
  14. <!--//////////////////////////////////////////////////////////////////////////////////
  15. //    Parameters (passed as <root-node>/Params/Param node with @name and data as a value):
  16. //        ot => object type string, e.g. Registry
  17. //        at_XXX=<value of AT_YYY> => e.g. for AT_KEY_READ => at_KeyRead=25
  18. //        priority => high, low or normal (default)
  19. ///////////////////////////////////////////////////////////////////////////////////-->
  20.  
  21. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt">
  22.  
  23.     <xsl:output method="html"/>
  24.  
  25.     <xsl:variable name="INCLUDED_FILES">../common/tools.xsl</xsl:variable>
  26.  
  27.     <!--Parameters to be passed to the XSLT transformation-->
  28.     <xsl:variable name="ot" select="//Params/Param[@name='ot']"/>
  29.     <xsl:variable name="priority" select="//Params/Param[@name='priority']"/>
  30.  
  31.     <xsl:template match="/">
  32.  
  33.         <xsl:text>new Array(</xsl:text>
  34.  
  35.         <xsl:for-each select="/SecDb/RuleList/Rule[($ot = @ot) and (not($priority) or ($priority = @priority))]">
  36.             <xsl:if test="position()>1">
  37.                 <xsl:text>,</xsl:text>
  38.             </xsl:if>
  39.  
  40.             <xsl:apply-templates select="."/>
  41.  
  42.         </xsl:for-each>
  43.  
  44.         <xsl:text>)</xsl:text>
  45.     </xsl:template>
  46.  
  47.     <!-- Rule template - called from the \ template -->
  48.     <xsl:template match="Rule">
  49.  
  50.         <xsl:text>new Array(</xsl:text>
  51.  
  52.         <!-- id of rule -->
  53.         <xsl:text>'</xsl:text>
  54.         <xsl:value-of select="@id"/>
  55.         <xsl:text>'</xsl:text>
  56.  
  57.         <!-- enable/disable -->
  58.         <xsl:text>,'</xsl:text>
  59.         <xsl:value-of select="@disabled"/>
  60.         <xsl:text>'</xsl:text>
  61.  
  62.         <!-- description -->
  63.         <xsl:text>,'</xsl:text>
  64.         <xsl:call-template name="printJSText">
  65.             <xsl:with-param name="string" select="@desc"/>
  66.         </xsl:call-template>
  67.         <xsl:text>'</xsl:text>
  68.  
  69.         <!-- object and obj_id (2 items) -->
  70.         <xsl:choose>
  71.             <xsl:when test="not($ot = 'SystemPrivilege')">
  72.                 <xsl:text>,'</xsl:text>
  73.                     <xsl:call-template name="printJSText">
  74.                         <xsl:with-param name="string" select="Object"/>
  75.                     </xsl:call-template>
  76.                 <xsl:text>'</xsl:text>
  77.  
  78.                 <xsl:text>,'</xsl:text>
  79.                     <xsl:call-template name="printJSText">
  80.                         <xsl:with-param name="string" select="@obj_id"/>
  81.                     </xsl:call-template>
  82.                 <xsl:text>'</xsl:text>
  83.             </xsl:when>
  84.             <xsl:otherwise>
  85.                 <xsl:text>,'',''</xsl:text>
  86.             </xsl:otherwise>
  87.         </xsl:choose>
  88.  
  89.         <!-- account -->
  90.         <xsl:text>,'</xsl:text>
  91.         <xsl:value-of select="@account"/>
  92.         <xsl:text>'</xsl:text>
  93.  
  94.         <!-- app -->
  95.         <xsl:text>,'</xsl:text>
  96.         <xsl:call-template name="printJSText">
  97.             <xsl:with-param name="string" select="@app"/>
  98.         </xsl:call-template>
  99.         <xsl:text>'</xsl:text>
  100.  
  101.         <!-- app_id -->
  102.         <xsl:text>,'</xsl:text>
  103.         <xsl:call-template name="printJSText">
  104.             <xsl:with-param name="string" select="@app_id"/>
  105.         </xsl:call-template>
  106.         <xsl:text>'</xsl:text>
  107.  
  108.         <!-- access -->
  109.         <xsl:text>,'</xsl:text>
  110.  
  111.         <xsl:for-each select="AccessDesc">
  112.             <xsl:if test="position()>1">
  113.                 <xsl:text>|</xsl:text>
  114.             </xsl:if>
  115.  
  116.             <xsl:value-of select="@at"/>
  117.             <xsl:text>-</xsl:text>
  118.             <xsl:value-of select="@ar"/>
  119.             <xsl:text>-</xsl:text>
  120.             <xsl:value-of select="@al"/>
  121.         </xsl:for-each>
  122.  
  123.         <xsl:text>'</xsl:text>
  124.  
  125.         <!-- time of day -->
  126.         <xsl:text>,'</xsl:text>
  127.         <xsl:call-template name="printJSText">
  128.             <xsl:with-param name="string" select="@timeofday"/>
  129.         </xsl:call-template>
  130.         <xsl:text>'</xsl:text>
  131.  
  132.         <!-- time of day id -->
  133.         <xsl:text>,'</xsl:text>
  134.         <xsl:call-template name="printJSText">
  135.             <xsl:with-param name="string" select="@timeofday_id"/>
  136.         </xsl:call-template>
  137.         <xsl:text>'</xsl:text>
  138.  
  139.         <!-- user(s) -->
  140.         <xsl:text>,'</xsl:text>
  141.         <xsl:value-of select="@filter"/>
  142.         <xsl:text>'</xsl:text>
  143.  
  144.         <!-- priority -->
  145.         <xsl:text>,'</xsl:text>
  146.         <xsl:value-of select="@priority"/>
  147.         <xsl:text>'</xsl:text>
  148.  
  149.         <!-- preferred -->
  150.         <xsl:text>,'</xsl:text>
  151.         <xsl:value-of select="@preferred"/>
  152.         <xsl:text>'</xsl:text>
  153.  
  154.         <xsl:text>)</xsl:text>
  155.     </xsl:template>
  156.  
  157. </xsl:stylesheet>
  158.